home *** CD-ROM | disk | FTP | other *** search
/ The Complete Work of Mahatma Gandhi / The Complete Work of Mahatma Gandhi-CD interactive.iso / mac / Ganmac / eb.cst / 00393_Script_toggle < prev   
Text File  |  1999-09-22  |  393b  |  12 lines

  1. on mousedown
  2.   if the movierate of sprite 6 = 0 then
  3.     puppetsprite 101,true
  4.     set the membernum of sprite 101 to the number of member "stop" of castlib "eb.cst"
  5.     set the movierate of sprite 6 to 1
  6.     updatestage
  7.   else
  8.     set the membernum of sprite 101 to the number of member "play" of castlib "eb.cst"
  9.     set the movierate of sprite 6 to 0
  10.     updatestage
  11.   end if
  12. end